home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / libsrc / m / src / hypot.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-03-10  |  88 b   |  7 lines

  1. #include <math.h>
  2.  
  3. double hypot(double x, double y)
  4. {
  5.   return sqrt(x*x + y*y);
  6. }
  7.